<xs:complexType name="MedikamentType">
<xs:choice>
<xs:element name="Einzelfallmedikation">
<xs:simpleType>
<xs:restriction base="stringWithAtLeastOneWordCharacter">
<xs:minLength value="1" />
<xs:maxLength value="1024" />
</xs:restriction>
</xs:simpleType>
</xs:element>
<xs:element name="Dauermedikation">
<xs:simpleType>
<xs:restriction base="stringWithAtLeastOneWordCharacter">
<xs:minLength value="1" />
<xs:maxLength value="1024" />
</xs:restriction>
</xs:simpleType>
</xs:element>
</xs:choice>
</xs:complexType>
|